Skip to content

fix: update db backup release notes#422

Merged
adibarra merged 1 commit into
masterfrom
fix/update-release-notes
Jun 5, 2026
Merged

fix: update db backup release notes#422
adibarra merged 1 commit into
masterfrom
fix/update-release-notes

Conversation

@adibarra
Copy link
Copy Markdown
Contributor

@adibarra adibarra commented Jun 5, 2026

Note

Low Risk
Cosmetic change to release note text in an existing workflow; no database or application runtime impact.

Overview
Updates the Create release step in the database backup workflow so the reassembly shell one-liner in gh release create --notes is wrapped in backticks for GitHub-flavored markdown (inline code in the release body).

No changes to dump, compress, split, or upload behavior—only the text shown on weekly DB dump releases.

Reviewed by Cursor Bugbot for commit 84fcc7c. Bugbot is set up for automated code reviews on this repo. Configure here.

@adibarra adibarra marked this pull request as ready for review June 5, 2026 22:33
@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 5, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
inferencemax-app Building Building Preview, Comment Jun 5, 2026 10:33pm

Request Review

@adibarra adibarra merged commit 6ddfc0e into master Jun 5, 2026
12 of 13 checks passed
@adibarra adibarra deleted the fix/update-release-notes branch June 5, 2026 22:33
Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 84fcc7c. Configure here.

gh release create "$TAG" $DUMP_GLOB \
--title "DB Dump $(date -u +%Y-%m-%d)" \
--notes "Weekly full database dump (xz-compressed, split into <2 GiB parts). Reassemble: cat *.tar.xz.part* | xz -d | tar -x" \
--notes "Weekly full database dump (xz-compressed, split into <2 GiB parts). Reassemble: `cat *.tar.xz.part* | xz -d | tar -x`" \
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks run shell substitution

High Severity

The --notes string uses backticks around the reassembly command inside double quotes in a bash run step. Bash treats those backticks as command substitution, so the workflow runs cat *.tar.xz.part* | xz -d | tar -x when creating the release instead of putting literal backticks in the GitHub release notes.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 84fcc7c. Configure here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant